home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 October / Software of the Month Club 1996 October.iso / pc / dos / biz / practype / readme.bat < prev    next >
Encoding:
DOS Batch File  |  1996-07-06  |  2.7 KB  |  82 lines

  1. @ECHO OFF
  2. IF "%1" = "INFO" GOTO INFO
  3. IF "%1" = "info" GOTO INFO
  4. IF "%1" = "DOCUMENT" GOTO DOC
  5. IF "%1" = "document" GOTO DOC
  6. IF "%1" = "REGISTER" GOTO REG
  7. IF "%1" = "register" GOTO REG
  8. IF "%1" = "INSTALL" GOTO INSTALL
  9. IF "%1" = "install" GOTO INSTALL
  10. CLS
  11. ECHO  
  12. ECHO                            PRACTYPE version 2.1
  13. ECHO              Copyright 1991, 1995, and 1996 by G. R. Anderson
  14. ECHO  
  15. ECHO  
  16. ECHO README.BAT performs the following functions:
  17. ECHO  
  18. ECHO   README           Displays this screen
  19. ECHO  
  20. ECHO   README INFO      Provides information about PRACTYPE
  21. ECHO  
  22. ECHO   README DOCUMENT  Prints a copy of the PRACTYPE document on your printer
  23. ECHO  
  24. ECHO   README REGISTER  Prints a copy of the registration form on your printer
  25. ECHO  
  26. ECHO   README INSTALL   Installs PRACTYPE on the C:\PRACTYPE\ directory
  27. ECHO  
  28. ECHO   README INSTALL d:path   Installs PRACTYPE in the d:path directory
  29. ECHO            where "d" is the disk where you want the program loaded
  30. ECHO            and "path" is the directory where you want its files stored
  31. ECHO            (e.g. C:\TYPING\)
  32. ECHO  
  33. ECHO                                                                          
  34. GOTO END
  35. :INFO
  36. CLS
  37. ECHO  
  38. ECHO                            PROGRAM INFORMATION
  39. ECHO  
  40. ECHO  
  41. ECHO PRACTYPE is a typing practice program for beginning keyboarders.  It 
  42. ECHO teaches how to use your computer keyboard to enter data accurately 
  43. ECHO without ever looking at your keyboard or monitor.  The program leads 
  44. ECHO step by step through the rows of keys and recommends means for improving 
  45. ECHO typing performance.
  46. ECHO  
  47. ECHO The PRACTYPE document describes correct typing techniques and explains
  48. ECHO the use of the program.  Help menues in the program also discuss typing
  49. ECHO technique and program usage.  The use of most program features, however,
  50. ECHO is readily apparent.
  51. ECHO  
  52. ECHO PRACTYPE is distributed as SHAREWARE.  You are free to try SHAREWARE 
  53. ECHO products before you buy them and may distribute them without charge to
  54. ECHO anyone.  However, if you decide to use a SHAREWARE product, you are
  55. ECHO obligated to buy it.  You buy PRACTYPE by registering it.  Register the
  56. ECHO program by printing the form PRACTYPE.REG, filling it out to indicate
  57. ECHO your choice of options, and submitting it with the appropriate fee.
  58. ECHO  
  59. ECHO   
  60. ECHO  
  61. PAUSE
  62. CLS
  63. GOTO END
  64. :DOC
  65. TYPE PRACTYPE.DOC > PRN
  66. GOTO END
  67. :REG
  68. TYPE PRACTYPE.REG > PRN
  69. GOTO END
  70. :INSTALL
  71. IF "%2" = "" GOTO DEFLT
  72. MKDIR %2
  73. COPY PRACTYPE.* %2
  74. COPY *.LOG %2
  75. COPY README.BAT %2
  76. GOTO END
  77. :DEFLT
  78. MKDIR C:\PRACTYPE
  79. COPY PRACTYPE.* C:\PRACTYPE\
  80. COPY *.LOG C:\PRACTYPE\
  81. COPY README.BAT C:\PRACTYPE\
  82. :END